* {
    font-family: 'Geist', sans-serif;
}


/* =====================================================
   DESKTOP HEADER
   ===================================================== */

.main-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 19px;
}

.logo-img {
    width: 180px;
   
    object-fit: contain;
}

.logo-text {
    font-size: 13px;
    font-weight: 500;
    color: #111;
}

.main-header .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #111;
    white-space: nowrap;
    padding: 5px 11px;
    border: 1px;
    border-radius: 10px;
}

.main-header .nav-link:hover {
    background: #2f62e9;
    color: #fff;
}

.main-header .nav-link.active {
    background: #2f62e9;
    color: #fff;
}

.login-btn {
        width: 50px;
    height: 40px;
    font-size: 12px;
    background-color: #2f62e9;
    border-color: #2f62e9;
}

.login-btn:hover {
    background-color: #1f50d0;
    border-color: #1f50d0;
}

.login-icon {
    font-size: 20px;
}


/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */

.mobile-menu-btn,
.mobile-close-btn {
    display: none;
}


@media (max-width: 767px) {

    /* =================================================
       NORMAL MOBILE HEADER
       ================================================= */

    .main-header {
        position: relative;

        width: 100%;
        height: 64px;

        padding: 0 16px;

        background: #fff !important;

        border-bottom: 1px solid #e5e5e5;

        box-shadow: none;

        z-index: 9999;





        display: flex;
    }


    .main-header .container {
        width: 100%;
        max-width: 100%;

        height: 100%;

        padding: 0;
    }


    .main-header .row {
        height: 100%;

        display: flex !important;

        align-items: center;

        justify-content: space-between;

        margin: 0;
    }


    /* =================================================
       LOGO - LEFT
       ================================================= */

    .main-header .row > .col-auto:first-child {
        width: auto;

        display: flex;

        align-items: center;

        padding: 0;

        margin: 0;
    }


    .main-header .row > .col-auto:first-child a {
        display: flex !important;

        align-items: center;

        margin: 0;

        padding: 0;

        text-decoration: none;
    }


    .main-header .logo-text {
        font-size: 18px;

        font-weight: 600;

        color: #123f91;
    }


    .main-header .logo-img {
        width: 145px;

        height: auto;
    }


    /* =================================================
       HAMBURGER - RIGHT
       ================================================= */

    .mobile-menu-btn {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        padding: 0;

        margin: 0;

        border: none;

        background: #f5f7fc;

        color: #071d57;

        font-size: 28px;

        line-height: 1;
        margin-top: 10px;
        cursor: pointer;
    }


    .mobile-menu-btn:hover {
        background: #eef3fc;
    }


    /* =================================================
       HIDE DESKTOP LOGIN
       ================================================= */

    .main-header .row > .col-auto:last-child {
        display: none;
    }


    /* =================================================
       HIDE NAVIGATION INITIALLY
       ================================================= */

    .main-header .row > .col:not(.col-auto) {
        display: none;
    }


    /* =================================================
       WHEN MOBILE MENU IS OPEN
       ================================================= */

    .main-header.mobile-open {

        position: fixed;

        top: 0;
        left: 0;

        width: 88%;
        max-width: 460px;

        height: 100vh;

        padding: 0 20px;

        background: #fff !important;

        box-shadow: 4px 0 18px rgba(0, 0, 0, 0.12);

        overflow-y: auto;
    }


    .main-header.mobile-open .container {
        height: auto;

        padding: 0;
    }


    .main-header.mobile-open .row {
        display: block !important;

        height: auto;
    }


    /* =================================================
       LOGO HEADER WHEN OPEN
       ================================================= */

    .main-header.mobile-open
    .row > .col-auto:first-child {

        width: 100%;

        height: 70px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 0;

        border-bottom: 0;
    }


    .main-header.mobile-open
    .row > .col-auto:first-child a {

        display: flex !important;

        align-items: center;

        margin: 0;
    }


    /* =================================================
       CLOSE BUTTON - RIGHT OF LOGO
       ================================================= */

    .main-header.mobile-open .mobile-close-btn {

        display: flex;

        align-items: center;
        justify-content: center;

        position: absolute;

        top: 18px;
        right: 18px;

        width: 35px;
        height: 35px;

        padding: 0;

        border: none;

        background: transparent;

        color: #071d57;

        font-size: 30px;

        font-weight: 300;

        line-height: 1;

        cursor: pointer;
    }


    /* =================================================
       HIDE HAMBURGER WHEN OPEN
       ================================================= */

    .main-header.mobile-open .mobile-menu-btn {
        display: none;
    }


    /* =================================================
       SHOW NAVIGATION WHEN OPEN
       ================================================= */

    .main-header.mobile-open
    .row > .col:not(.col-auto) {

        display: block;

        width: 100%;

        padding: 0;

        margin: 0;
    }


    .main-header.mobile-open nav {

        display: block !important;

        width: 100%;

        padding: 10px 0 30px;
    }


    /* =================================================
       MOBILE NAV LINKS
       ================================================= */

    .main-header.mobile-open .nav-link {

        display: flex;

        align-items: center;

        width: 100%;

        min-height: 51px;

        padding: 12px 18px;

        margin-bottom: 7px;

        border: none;

        border-radius: 5px;

        background: transparent;

        color: #071d57;

        font-size: 17px;

        font-weight: 400;

        text-decoration: none;

        white-space: nowrap;
    }


    /* ACTIVE */

    .main-header.mobile-open .nav-link.active {

        background: #cddbf5;

        color: #071d57;
    }


    /* HOVER */

    .main-header.mobile-open .nav-link:hover {

        background: #eef3fc;

        color: #071d57;
    }


    /* =================================================
       DARK OVERLAY
       ================================================= */

    .mobile-overlay {

        display: none;

        position: fixed;

        inset: 0;

        background: rgba(0, 0, 0, 0.35);

        z-index: 9998;
    }


    body.mobile-menu-active .mobile-overlay {

        display: block;
    }

}

/* footer */
/*CTA*/
.healthcare-cta {
    padding: 45px 0;
    background: #f0f3ff;
}

.healthcare-cta-box {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem 4rem;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
}

.healthcare-cta-content {
    padding-right: 30px;
}

.healthcare-cta-content h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
}

.healthcare-cta-content h2 span {
    color: #2860e9;
}

.healthcare-cta-content p {
  
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.5;
    
}

.healthcare-cta-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cta-btn {
    padding: 9px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.cta-btn-primary {
    background: #2860e9;
    color: #fff;
    border: 1px solid #2860e9;
}

.cta-btn-primary:hover {
    background: #174bd0;
    color: #fff;
}

.cta-btn-secondary {
    background: #fff;
    color: #2860e9;
    border: 1px solid #2860e9;
}

.cta-btn-secondary:hover {
    background: #2860e9;
    color: #fff;
}

.healthcare-cta-image {
    height: 228px;
    overflow: hidden;
    border-radius: 8px;
}

.healthcare-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/*Footer*/
.th-footer {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #00187a;
  color: #fff;
  padding: 30px 0 15px;
}

/* =========================================
   LOGO
========================================= */

.th-footer-logo {
  display: inline-block;

  margin-bottom: 20px;
}

.th-footer-logo img {
  width: 160px;

  height: auto;

  display: block;
}

/* =========================================
   HEADINGS
========================================= */

.th-footer h4 {
  margin: 0 0 16px;

  font-size: 18px;

  font-weight: 500;

  line-height: 1.3;
}

.th-footer-main h4 {
  margin-bottom: 10px;
}

/* =========================================
   REGISTERED OFFICE
========================================= */

.th-office-icon {
  flex: 0 0 28px;
  font-size: 20px;
}

.th-office-content {
  max-width: 430px;
}

.th-office-content strong {
  display: block;

  margin-bottom: 10px;

  font-size: 16px;

  font-weight: 500;
}

.th-office-content p {
  margin: 0 0 10px;

  font-size: 14px;

  line-height: 1.45;
}

/* =========================================
   FOOTER COLUMNS
========================================= */

.th-footer-column {
  padding-top: 2px;
}

.th-footer-column h4 {
  margin-bottom: 10px;
}

.th-footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  transition: 0.2s ease;
}

.th-footer-column a:hover {
  color: #5e0eeb;
}

/* =========================================
   CLIENT SUPPORT
========================================= */

.th-phone-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.th-phone-list a{
  font-size: 14px;
  text-decoration: none;
  color: #fff;
}
.th-phone-list span {
  font-size: 14px;
  line-height: 1.35;
}

/* =========================================
   EMAIL
========================================= */

.th-email {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 15px;
}

.th-email i {
  font-size: 20px;
  margin-top: -5px;
}

.th-email a {
  font-size: 14px;

  text-decoration: none;
}

.th-email a:hover {
  color: #5d11e0;
}

/* =========================================
   PARTNER
========================================= */

.th-partner-title {
  margin-bottom: 10px !important;
}

.th-partner-logo {
  display: block;

  width: 160px;

  height: auto;
}

/* =========================================
   GOOGLE BADGE
========================================= */

.th-google-badge {
  margin-top: 35px;

  margin-left: 0;
}

.th-google-badge img {
  width: 340px;

  max-width: 100%;

  height: auto;

  display: block;
}

/* =========================================
   BOTTOM
========================================= */

.th-footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  /*margin-top: 45px;*/

  padding-top: 15px;

  border-top: 1px solid rgba(255, 255, 255, 0.65);
}

.th-copyright {
  font-size: 14px;

  line-height: 1.4;
}

/* =========================================
   SOCIAL
========================================= */

.th-footer-social {
  display: flex;

  align-items: center;

  gap: 16px;
}

.th-footer-social a {
       display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: white;
    padding: 0px 8px;
    border-radius: 5px;
}

.linkedin-icon {
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.x-icon {
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 600;
}






/* model popup */
/* =====================================================
   SEARCH MODAL
   ===================================================== */

.search-modal-dialog {
    max-width: 760px;
    width: calc(100% - 30px);
}

.search-modal-content {
    position: relative;

    border: 1px solid #d9e1ec;
    border-radius: 10px;

    background: #fff;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.20);

    overflow: hidden;
}


/* =====================================================
   CLOSE BUTTON
   ===================================================== */

.search-close {
    position: absolute;

    top: 12px;
    right: 20px;

    width: 35px;
    height: 35px;

    border: none;
    background: transparent;

    font-size: 30px;
    font-weight: 400;

    line-height: 1;

    color: #777;

    cursor: pointer;

    z-index: 5;
}

.search-close:hover {
    color: #222;
}


/* =====================================================
   MODAL BODY
   ===================================================== */

.search-modal-body {
    padding: 36px 40px 32px;
    text-align: center;
}


/* =====================================================
   SEARCH ICON
   ===================================================== */

.search-icon-box {
    width: 50px;
    height: 50px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: linear-gradient(135deg, #20dce8, #2344e8);

    box-shadow: 0 4px 10px rgba(35, 68, 232, 0.25);
}

.search-icon-box i {
    font-size: 25px;
    color: #fff;
}


/* =====================================================
   HEADING
   ===================================================== */

.search-modal-body h2 {
    margin: 0;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 700;

    color: #080808;
}

.search-modal-body h2 span {
    color: #2938dc;
}


/* =====================================================
   DESCRIPTION
   ===================================================== */

.search-description {
   
    margin: 10px auto 27px;

    font-size: 18px;
    line-height: 1.35;

    color: #222;
}


/* =====================================================
   SEARCH INPUT BACKGROUND
   ===================================================== */

.search-box-wrapper {
    padding: 14px;

    background: #e9f5ff;

    border-radius: 10px;

    margin-bottom: 34px;
}


/* =====================================================
   SEARCH BOX
   ===================================================== */

.search-box {
    height: 74px;

    display: flex;
    align-items: center;

    background: #fff;

    border-radius: 10px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);

    padding-left: 24px;
}


/* Input */

.search-box input {
    flex: 1;

    width: 100%;

    height: 100%;

    border: none;
    outline: none;

    background: transparent;

    font-size: 16px;

    color: #222;
}

.search-box input::placeholder {
    color: #999;
}


/* Search submit button */

.search-box button {
    width: 35px;
    height: 35px;

    margin-right: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 6px;

    background: #2938dc;

    color: #fff;

    cursor: pointer;
}

.search-box button:hover {
    background: #1d2dc5;
}

.search-box button i {
    font-size: 22px;
}


/* =====================================================
   SUGGESTIONS
   ===================================================== */

.search-suggestions {
    text-align: left;
}

.search-suggestions > p {
    margin: 0 0 13px;

    font-size: 17px;

    color: #252525;
}


/* =====================================================
   SUGGESTION CARDS
   ===================================================== */

.suggestion-list {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}


.suggestion-list a {
    min-height: 67px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 10px 12px;

    background: #f3f8fd;

    border: 1px solid #e5edf5;

    border-radius: 7px;

    text-decoration: none;

    color: #222;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);

    transition: all 0.2s ease;
}


.suggestion-list a:hover {
    transform: translateY(-2px);

    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.10);
}


.suggestion-list a span {
    font-size: 15px;
    line-height: 1.35;
}


.suggestion-list a i {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #fff;

    border-radius: 4px;

    font-size: 17px;

    color: #555;

    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 767px) {

    .search-modal-dialog {
        width: calc(100% - 24px);

        margin: 12px auto;
    }

    .search-modal-content {
        border-radius: 10px;
    }

    .search-modal-body {
        padding: 30px 18px 24px;
    }

 

    .search-modal-body h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .search-description {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 22px;
    }

    .search-box-wrapper {
        padding: 10px;
        margin-bottom: 25px;
    }

    .search-box {
        height: 62px;
        padding-left: 15px;
    }

    .search-box button {
        width: 42px;
        height: 42px;
        margin-right: 9px;
    }

    .suggestion-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .search-suggestions > p {
        font-size: 15px;
    }

    .suggestion-list a {
        min-height: 62px;
    }

    .suggestion-list a span {
        font-size: 13px;
    }

}